home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Sample Code / AOCE Sample Code / PowerTalk Access Modules / Sample SMSAM / SampleSMSAM Source / 2020HalfGateway / 2020HalfGatewayMisc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-28  |  831 b   |  41 lines  |  [TEXT/R*ch]

  1. /*
  2.     File:        2020HalfGatewayMisc.h
  3.  
  4.     Copyright:    © 1991-1994 by Apple Computer, Inc.
  5.                 All rights reserved.
  6.  
  7.     Part of the AOCE Sample SMSAM Package.  Consult the license
  8.     which came with this software for your specific legal rights.
  9.  
  10. */
  11.  
  12.  
  13.  
  14. #ifndef __2020HALFGATEWAYMISC__
  15. #define __2020HALFGATEWAYMISC__
  16.  
  17. #ifndef __COREGATEWAYTYPES__
  18. #include "CoreGatewayTypes.h"
  19. #endif
  20.  
  21. #ifndef __OCEMAIL__
  22. #include <OCEMail.h>
  23. #endif
  24.  
  25. #ifndef __OCEOBJECTS__
  26. #include "OCEObjects.h"
  27. #endif
  28.  
  29. #ifndef __RECIPIENT__
  30. #include "Recipient.h"
  31. #endif
  32.  
  33. Boolean ValidRecipientType (RecipientTypeSet recipient);
  34.  
  35. short ConvertRecipientTypeSettoAMAttribute (RecipientTypeSet recipient);
  36.  
  37. void MakeMailAttributeBitmap (MailAttributeBitmap& attribute, unsigned long valueToSet);
  38. MailAttributeBitmap MakeMailAttributeBitmap ( unsigned long valueToSet );
  39.  
  40. #endif
  41.